home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Files / Errors / DirectoryNotFoundError.h < prev    next >
Text File  |  1997-06-28  |  350b  |  22 lines

  1. // DirectoryNotFoundError.h
  2.  
  3. #ifndef DirectoryNotFoundError_h
  4. #define DirectoryNotFoundError_h
  5.  
  6. #ifndef FileError_h
  7. #include "FileError.h"
  8. #endif
  9.  
  10. class DirectoryNotFoundError: public FileError
  11.   {
  12.     public:
  13.         DirectoryNotFoundError( OSErr error )
  14.           : FileError( error )
  15.           {}
  16.         
  17.         // Used for dirNFErr
  18.         // and fnfErr from FindFolder
  19.   };
  20.  
  21. #endif
  22.